home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Views / Panes / GrafPortRootPane.h < prev    next >
Text File  |  2000-06-23  |  458b  |  32 lines

  1. // GrafPortRootPane.h
  2.  
  3. #ifndef GrafPortRootPane_h
  4. #define GrafPortRootPane_h
  5.  
  6. #ifndef Pane_h
  7. #include "Pane.h"
  8. #endif
  9. #ifndef UPoint32_h
  10. #include "UPoint32.h"
  11. #endif
  12.  
  13. class GrafPortObject;
  14. class UPoint32;
  15.  
  16. class GrafPortRootPane: public Pane
  17.   {
  18.     private:
  19.         GrafPortObject& port;
  20.         
  21.     public:
  22.         GrafPortRootPane( GrafPortObject& );
  23.  
  24.         const UPoint32 Size() const;
  25.         
  26.         virtual void Adjust( Canvas& ) const;
  27.  
  28.         void Deliver( CellVisitor& ) const;
  29.   };
  30.  
  31. #endif
  32.